9de1ead26bf920819222c048cb8603e68b4ab0bf,eclipse/json/ts.eclipse.ide.json.ui/src/ts/eclipse/ide/json/ui/internal/AbstractFormPage.java,AbstractFormPage,bind,#Button#IJSONPath#Boolean#,227

Before Change


	}

	protected void bind(Button checkbox, IJSONPath jsonPath, Boolean defaultValue) {
		getBindingContext().bindValue(WidgetProperties.selection().observe(checkbox),
				JSONProperties.value(jsonPath, defaultValue).observe(getEditor().getDocument()));
	}

	protected void bind(CCombo combo, IJSONPath path, String defaultValue) {

After Change


		bind(checkbox, jsonPath, null);
	}

	protected void bind(Button checkbox, IJSONPath jsonPath, Boolean defaultValue) {
		JSONBindingUIHelper.bind(checkbox, jsonPath, defaultValue, getEditor().getDocument(), getBindingContext());
	}

	protected void bind(CCombo combo, IJSONPath path, String defaultValue) {